home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1995 November / EnigmA AMIGA RUN 02 (1995)(G.R. Edizioni)(IT)[!][issue 1995-11][Skylink CD].iso / earcd / gfx / fu1_62.lha / fu / Formulas / InvMandel.Form < prev    next >
Text File  |  1994-04-13  |  208b  |  27 lines

  1. InvMandel
  2. {
  3.     {
  4.         mirrorx
  5.         x1=-1.5
  6.         x2= 4.0
  7.         y1=-2.0
  8.         y2= 2.0
  9.         bailout=2.0            ; Bailoutvalue
  10.     }
  11.     {
  12.         pixel=[1.0,0.0]/pixel
  13.         z=pixel
  14.         c=pixel
  15.     }
  16.     {
  17.         z=z*z
  18.         z=z+c
  19.         w=abs(z)
  20.     }
  21.     {
  22.         w>bailout
  23.     }
  24.     {
  25.     }
  26. }
  27.